home *** CD-ROM | disk | FTP | other *** search
/ BUG 1 / BUGCD1996_0708.ISO / pc / util / minilin / minilin.exe / ETC / RC.D / RC_S.{_4 < prev    next >
Text File  |  1994-05-30  |  1KB  |  44 lines

  1. # /etc/rc
  2. #
  3. # These commands are executed at boot time by init(8).
  4. # User customization should go in /etc/rc.local.
  5.  
  6. PATH=/sbin:/usr/sbin:/bin:/usr/bin
  7.  
  8. # enable swapping
  9. /sbin/swapon -a
  10.  
  11. # Start update.
  12. /sbin/update &
  13.  
  14. # remove /etc/mtab* so that mount will create it with a root entry
  15. /bin/rm -f /etc/mtab* /etc/nologin /etc/utmp
  16.  
  17. # Looks like we have to create this.
  18. cat /dev/null >> /etc/utmp
  19.  
  20. # mount file systems in fstab (and create an entry for /)
  21. # but not NFS because TCP/IP is not yet configured
  22. /sbin/mount -avt nonfs
  23.  
  24. # Configure the system clock.
  25. # This can be changed if your system keeps GMT.
  26. if [ -x /sbin/clock ]; then
  27.   /sbin/clock -s
  28. fi
  29.  
  30. # Setup the /etc/issue and /etc/motd to reflect the current kernel level:
  31. # THESE WIPE ANY CHANGES YOU MAKE TO /ETC/ISSUE AND /ETC/MOTD WITH EACH
  32. # BOOT. COMMENT THEM OUT IF YOU WANT TO MAKE CUSTOM VERSIONS.
  33. echo > /etc/issue
  34. echo Welcome to Linux `/bin/uname -a | /bin/cut -d\  -f3`. >> /etc/issue
  35. echo >> /etc/issue
  36. echo "`/bin/uname -a | /bin/cut -d\  -f1,3`. (Posix)." > /etc/motd
  37.  
  38. # Set up the serial ports.
  39. # This made a couple machines I tested this on hang at this point in the boot
  40. # process, so it's getting commented out by default. However, if you need to
  41. # set up extended serial ports try it out. It usually works great.
  42. #/bin/sh /etc/rc.d/rc.serial
  43.  
  44.